home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programmer's Power Pack
/
Delphi Volume 1.iso
/
e_to_l
/
fbuilder
/
delphi
/
fbrtcomp.int
< prev
next >
Wrap
Text File
|
1996-09-15
|
1KB
|
37 lines
{* *}
{* FormulaBuilder *}
{* YGB Software,Inc *}
{* Copyright 1995 Clayton Collie *}
{* All Rights Reserved *}
{* *}
{* This unit defines the object *}
{* TRTTIExpression, a RTTI-Aware *}
{* Expression type *}
{* *}
{$F+}
Unit FBRTCOMP;
Interface
uses typinfo,classes,sysutils,fbcomp,fbcalc;
TYPE
TRTTIExpression = Class(TCustomExpression)
Private
fObject : TObject;
Procedure SetObject(const theObject : TObject);
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Function StatusText : string; override;
Procedure Clear; override;
Property Root : TObject read fObject write SetObject;
Published
Property Formula;
Property Lines;
Property UseExceptions;
end;
IMPLEMENTATION
END.